home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVPSIZE.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  981b  |  26 lines

  1. /*================================================*/
  2. /* TVPSIZE.C                                      */
  3. /*   functions to handle mouse pointer objects    */
  4. /*                                                */
  5. /* (c) Copyright 1988 Ralf Brown                  */
  6. /*     All Rights Reserved                        */
  7. /* May be freely copied for noncommercial use,    */
  8. /* provided that this copyright notice remains    */
  9. /* intact and any changes are indicated in the    */
  10. /* comment blocks preceding functions             */
  11. /*================================================*/
  12.  
  13. #include "tvapi.h"
  14.  
  15. /*================================================*/
  16. /* TVptr_messages     get number of pending msgs  */
  17. /*   Ralf Brown 4/8/88                            */
  18. /*================================================*/
  19.  
  20. int pascal TVptr_messages(OBJECT pointer)
  21. {
  22.    return (pointer) ? (int) TVsendmsg1(SIZE_MSG, TOS, pointer) : 0 ;
  23. }
  24.  
  25. /* End of TVPSIZE.C */
  26.